home *** CD-ROM | disk | FTP | other *** search
- object Form1: TForm1
- Left = 250
- Top = 96
- AutoScroll = False
- Caption = 'Pic Painter'
- ClientHeight = 304
- ClientWidth = 529
- Font.Color = clWindowText
- Font.Height = -16
- Font.Name = 'System'
- Font.Style = []
- Menu = MainMenu1
- PixelsPerInch = 120
- OnCreate = FormCreate
- TextHeight = 20
- object Image1: TImage
- Left = 0
- Top = 0
- Width = 529
- Height = 304
- Align = alClient
- AutoSize = True
- Stretch = True
- OnMouseDown = Image1MouseDown
- OnMouseMove = Image1MouseMove
- OnMouseUp = Image1MouseUp
- end
- object MainMenu1: TMainMenu
- Left = 64
- Top = 16
- object FileMenu: TMenuItem
- Caption = '&File'
- object FileSave: TMenuItem
- Caption = '&Save'
- OnClick = FileSaveClick
- end
- object FileSaveAs: TMenuItem
- Caption = 'Save &As'
- OnClick = FileSaveAsClick
- end
- object FileLoad: TMenuItem
- Caption = '&Load'
- OnClick = FileLoadClick
- end
- object FileClear: TMenuItem
- Caption = '&Clear'
- OnClick = FileClearClick
- end
- object FileExit: TMenuItem
- Caption = '&Exit'
- OnClick = FileExitClick
- end
- end
- end
- object OpenDialog1: TOpenDialog
- DefaultExt = 'bmp'
- FileName = '*.bmp'
- Filter = 'Bitmaps|*.bmp'
- Left = 104
- Top = 16
- end
- object SaveDialog1: TSaveDialog
- DefaultExt = 'bmp'
- FileName = '*.bmp'
- Filter = 'Bitmaps|*.bmp'
- Left = 144
- Top = 16
- end
- end
-